home *** CD-ROM | disk | FTP | other *** search
/ C++ für Kids / C++ for kids.iso / Buch / Mchild1.h < prev    next >
C/C++ Source or Header  |  1999-01-10  |  1KB  |  34 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef Mchild1H
  3. #define Mchild1H
  4. //----------------------------------------------------------------------------
  5. #include <vcl\Controls.hpp>
  6. #include <vcl\Forms.hpp>
  7. #include <vcl\Graphics.hpp>
  8. #include <vcl\Classes.hpp>
  9. #include <vcl\Windows.hpp>
  10. #include <vcl\System.hpp>
  11. #include <vcl\ComCtrls.hpp>
  12. #include <vcl\StdCtrls.hpp>
  13. #include <vcl\ExtCtrls.hpp>
  14. #include "movie2.h"
  15. #include "Grids.hpp"
  16. //----------------------------------------------------------------------------
  17. class TMDIChild : public TForm
  18. {
  19. __published:
  20.     TRichEdit *RichEdit1;
  21.     TMovie *Movie1;
  22.     TStringGrid *StringGrid1;
  23.     void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  24.     void __fastcall FormCreate(TObject *Sender);
  25. private:
  26. public:
  27.   virtual void __fastcall GetText (String DateiName);
  28.   virtual void __fastcall GetImage (String DateiName);
  29.   virtual void __fastcall GetTable (String DateiName);
  30.   virtual __fastcall TMDIChild(TComponent *Owner);
  31. };
  32. //----------------------------------------------------------------------------
  33. #endif    
  34.